절대경로 설정하기(jsconfig.json)

✒️ 2025-05-28 09:40 내용 수정


상대 경로의 번거로움

import styles from '../styles/header.module.css';
import Main from '../pages/Main.js';

절대경로 설정

{
    "compilerOptions": {
        "baseUrl": "src" // root 디렉터리의 url
    },
    "include" : ["src"] // include에서 지정한 디렉터리들에 적용
}
import styles from 'styles/header.module.css';
import Main from 'pages/Main.js';